home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getdomainname.c < prev    next >
C/C++ Source or Header  |  1991-11-05  |  1KB  |  55 lines

  1. /* 
  2.  * getdomainname.c --
  3.  *
  4.  *    Returns the domain name.  This doesn't really work on sprite
  5.  *      so we just return "spicesNvices" which is the right name for
  6.  *      spurnet at Berkeley.
  7.  *
  8.  * Copyright 1991 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that this copyright
  12.  * notice appears in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header$";
  20. #endif /* not lint */
  21.  
  22. #define DOMAIN      "spicesNvices"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * getdomainname --
  29.  *
  30.  *    Returns the domain name.  This doesn't really work on sprite
  31.  *      so we just return "spicesNvices" which is the right name for
  32.  *      spurnet at Berkeley.
  33.  *
  34.  * Results:
  35.  *    Returns 0 on success, -1 otherwise.
  36.  *
  37.  * Side effects:
  38.  *    None.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. int
  44. getdomainname(name, namelen)
  45.     char *name;
  46.     int namelen;
  47. {
  48.     if (namelen <= strlen(DOMAIN)) {
  49.     return -1;
  50.     }
  51.     strcpy(name, DOMAIN);
  52.     return 0;
  53. }
  54.  
  55.